* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: #fff0f6;
}

.main-header {
    background: #d16ba5;
    color: white;
    text-align: center;
    padding: 20px;
    box-shadow: 0px 4px 10px rgba(0,0,0,0.2);
}

.main-nav {
    background: #ffe4ec;
    padding: 10px 0;
    box-shadow: 0px 4px 10px rgba(0,0,0,0.1);
}

.main-nav ul {
    list-style: none;
}

.main-nav ul li {
    display: inline;
    margin-right: 20px;
}

.main-nav a {
    text-decoration: none;
    color: #8e44ad;
    font-weight: bold;
}

.btn {
    background: #ff85a2;
    color: white !important;
    border-radius: 5px;
    padding: 5px 12px;
    margin-left: 5px;
}

.btn:hover {
    background: #e75480;
}

.custom-container {
    margin-top: 30px;
    text-align: center;
}

.carousel-inner img {
    height: 350px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0px 6px 15px rgba(0,0,0,0.3);
}

.carousel-caption {
    background: rgba(142, 68, 173, 0.6);
    border-radius: 5px;
}

footer {
    margin-top: 40px;
    background: #c06caa;
    color: white;
    text-align: center;
    padding: 15px;
    box-shadow: 0px -4px 10px rgba(0,0,0,0.2);
}